home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / idebug.c < prev    next >
C/C++ Source or Header  |  1995-05-13  |  7KB  |  258 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* idebug.c */
  20. /* Debugging support for Ghostscript interpreter */
  21. /* This file must always be compiled with DEBUG set. */
  22. #undef DEBUG
  23. #define DEBUG
  24. #include "string_.h"
  25. #include "ghost.h"
  26. #include "ialloc.h"        /* for imemory for getting struct type */
  27. #include "idebug.h"        /* defines interface */
  28. #include "idict.h"
  29. #include "iname.h"
  30. #include "ipacked.h"
  31. #include "istack.h"
  32. #include "iutil.h"
  33. #include "ivmspace.h"
  34. #include "ostack.h"            /* for opdef.h */
  35. #include "opdef.h"
  36. #include "store.h"        /* for make_oper for opdef.h */
  37.  
  38. /* Table of type name strings */
  39. static const char *type_strings[] = { type_print_strings };
  40.  
  41. /* First unassigned type index */
  42. extern const int tx_next_index;        /* in interp.c */
  43.  
  44. /* Print a name. */
  45. void
  46. debug_print_name(const ref *pnref)
  47. {    ref sref;
  48.     name_string_ref(pnref, &sref);
  49.     debug_print_string(sref.value.const_bytes, r_size(&sref));
  50. }
  51.  
  52. /* Print a ref. */
  53. private void
  54. debug_print_full_ref(const ref *pref)
  55. {    unsigned size = r_size(pref);
  56.     ref nref;
  57.     dprintf1("(%x)", r_type_attrs(pref));
  58.     switch ( r_type(pref) )
  59.        {
  60.     case t_array:
  61.       dprintf2("array(%u)0x%lx", size, (ulong)pref->value.refs); break;
  62.     case t_astruct:
  63.       goto strct;
  64.     case t_boolean:
  65.       dprintf1("boolean %x", pref->value.boolval); break;
  66.     case t_device:
  67.       dprintf1("device 0x%lx", (ulong)pref->value.pdevice); break;
  68.     case t_dictionary:
  69.       dprintf3("dict(%u/%u)0x%lx",
  70.            dict_length(pref), dict_maxlength(pref),
  71.            (ulong)pref->value.pdict);
  72.       break;
  73.     case t_file:
  74.       dprintf1("file 0x%lx", (ulong)pref->value.pfile); break;
  75.     case t_fontID:
  76.       goto strct;
  77.     case t_integer:
  78.       dprintf1("int %ld", pref->value.intval); break;
  79.     case t_mark:
  80.       dprintf("mark"); break;
  81.     case t_mixedarray:
  82.       dprintf2("mixed packedarray(%u)0x%lx", size,
  83.            (ulong)pref->value.packed); break;
  84.     case t_name:
  85.       dprintf2("name(0x%lx#%x)", (ulong)pref->value.pname,
  86.            name_index(pref));
  87.       debug_print_name(pref);
  88.       break;
  89.     case t_null:
  90.       dprintf("null"); break;
  91.     case t_oparray:
  92.       dprintf2("op_array(%u)0x%lx:", size, (ulong)pref->value.const_refs);
  93.       { const op_array_table *opt = op_index_op_array_table(size);
  94.         name_index_ref(opt->nx_table[size - opt->base_index], &nref);
  95.       }
  96.       debug_print_name(&nref);
  97.       break;
  98.     case t_operator:
  99.       dprintf1("op(%u", size);
  100.       if ( size > 0 && size < op_def_count ) /* just in case */
  101.         dprintf1(":%s", (const char *)(op_def_table[size]->oname + 1));
  102.       dprintf1(")0x%lx", (ulong)pref->value.opproc);
  103.       break;
  104.     case t_real:
  105.       dprintf1("real %f", pref->value.realval); break;
  106.     case t_save:
  107.       dprintf1("save %lu", pref->value.saveid); break;
  108.     case t_shortarray:
  109.       dprintf2("short packedarray(%u)0x%lx", size,
  110.            (ulong)pref->value.packed); break;
  111.     case t_string:
  112.       dprintf2("string(%u)0x%lx", size, (ulong)pref->value.bytes); break;
  113.     case t_struct:
  114. strct:      { obj_header_t *obj = (obj_header_t *)pref->value.pstruct;
  115.         dprintf2("struct %s 0x%lx",
  116.              (r_is_foreign(pref) ? "-foreign-" :
  117.               gs_struct_type_name_string(gs_object_type(imemory, obj))),
  118.              (ulong)obj);
  119.       }
  120.       break;
  121.     default: dprintf1("type 0x%x", r_type(pref));
  122.        }
  123. }
  124. private void
  125. debug_print_packed_ref(const ref_packed *pref)
  126. {    ushort elt = *pref & packed_value_mask;
  127.     ref nref;
  128.     switch ( *pref >> r_packed_type_shift )
  129.     {
  130.     case pt_executable_operator:
  131.       dprintf("<op_name>");
  132.       op_index_ref(elt, &nref);
  133.       debug_print_ref(&nref);
  134.       break;
  135.     case pt_integer:
  136.       dprintf1("<int> %d", (int)elt + packed_min_intval);
  137.       break;
  138.     case pt_literal_name:
  139.       dprintf("<lit_name>"); goto ptn;
  140.     case pt_executable_name:
  141.       dprintf("<exec_name>");
  142. ptn:      name_index_ref(elt, &nref);
  143.       dprintf2("(0x%lx#%x)", (ulong)nref.value.pname, elt);
  144.       debug_print_name(&nref);
  145.       break;
  146.     default:
  147.       dprintf2("<packed_%d?>0x%x", *pref >> r_packed_type_shift, elt);
  148.     }
  149. }
  150. void
  151. debug_print_ref(const ref *pref)
  152. {    if ( r_is_packed(pref) )
  153.         debug_print_packed_ref((const ref_packed *)pref);
  154.     else
  155.         debug_print_full_ref(pref);
  156.     fflush(dstderr);
  157. }
  158.  
  159. /* Dump one ref. */
  160. void
  161. debug_dump_one_ref(const ref *p)
  162. {    uint attrs = r_type_attrs(p);
  163.     uint type = r_type(p);
  164.     static const attr_print_mask apm[] = {attr_print_masks, {0,0,0}};
  165.     const attr_print_mask *ap = apm;
  166. #define buf_size 30
  167.     char buf[buf_size + 1];
  168.     uint plen;
  169.  
  170.     if ( type >= tx_next_index )
  171.       dprintf1("0x%02x?? ", type);
  172.     else if ( type >= t_next_index )
  173.       dprintf("opr* ");
  174.     else
  175.       dprintf1("%s ", type_strings[type]);
  176.     for ( ; ap->mask; ++ap )
  177.       if ( (attrs & ap->mask) == ap->value )
  178.         dputc(ap->print);
  179.     dprintf2(" 0x%04x 0x%08lx", r_size(p), *(const ulong *)&p->value);
  180.     if ( obj_cvs(p, (byte *)buf, countof(buf) - 1, &plen, NULL) >= 0 &&
  181.          ((buf[plen] = 0), strcmp(buf, "--nostringval--"))
  182.        )
  183.       dprintf1(" = %s", buf);
  184.     fflush(dstderr);
  185. }
  186.  
  187. /* Dump a region of memory containing refs. */
  188. void
  189. debug_dump_refs(const ref *from, uint size, const char *msg)
  190. {    const ref *p = from;
  191.     uint count = size;
  192.     if ( size && msg )
  193.         dprintf2("%s at 0x%lx:\n", msg, (ulong)from);
  194.     while ( count-- )
  195.        {    dprintf2("..%04x: 0x%02x ", (uint)p & 0xffff, r_type(p));
  196.         debug_dump_one_ref(p);
  197.         dputc('\n');
  198.         p++;
  199.        }
  200. }
  201.  
  202. /* Dump a stack. */
  203. void
  204. debug_dump_stack(const ref_stack *pstack, const char *msg)
  205. {    uint i;
  206.     const char *m = msg;
  207.     for ( i = ref_stack_count(pstack); i != 0; )
  208.       { const ref *p = ref_stack_index(pstack, --i);
  209.         if ( m )
  210.           dprintf2("%s at 0x%lx:\n", m, (ulong)pstack),
  211.           m = NULL;
  212.         dprintf2("0x%lx: 0x%02x ", (ulong)p, r_type(p));
  213.         debug_dump_one_ref(p);
  214.         dputc('\n');
  215.       }
  216. }
  217.  
  218. /* Dump an array. */
  219. void
  220. debug_dump_array(const ref *array)
  221. {    const ref_packed *pp;
  222.     unsigned int type = r_type(array);
  223.     uint len;
  224.  
  225.     switch (type)
  226.        {
  227.     default:
  228.         dprintf2 ("%s at 0x%lx isn't an array.\n",
  229.               (type < countof(type_strings) ?
  230.                type_strings[type] : "????"),
  231.               (ulong)array);
  232.         return;
  233.     case t_oparray:
  234.         /* This isn't really an array, but we'd like to see */
  235.         /* its contents anyway. */
  236.         debug_dump_array(array->value.const_refs);
  237.         return;
  238.     case t_array:
  239.     case t_mixedarray:
  240.     case t_shortarray: 
  241.         ;
  242.        }
  243.  
  244.     /* This "packed" loop works for all array-types. */
  245.     for ( len = r_size (array), pp = array->value.packed;
  246.           len > 0;
  247.           len--, pp = packed_next(pp))
  248.        {    ref temp;
  249.         packed_get(pp, &temp);
  250.         dprintf3("..%04x%c 0x%02x ", 
  251.              (uint)pp & 0xffff,
  252.              ((r_is_packed(pp)) ? '*' : ':'),
  253.              r_type(&temp));
  254.         debug_dump_one_ref(&temp);
  255.         dputc ('\n');
  256.        }
  257. }
  258.